home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MATHS / PLPLOT / PLPLOT.ZIP / scripts / fixfort next >
Encoding:
AWK Script  |  1994-04-08  |  283 b   |  11 lines

  1. #!/usr/bin/awk -f
  2. #
  3. #    File: fixfile
  4. #    Usage: fixfort oldfile.f >newfile.f
  5. #
  6. #     Very simple awk program to remove bang comments from Fortran files.
  7. #    Shouldn't be necessary very often: most Fortran compilers started
  8. #    supporting bang comments in the early 80's.
  9. #
  10. $1 != "!" { print }
  11.